home *** CD-ROM | disk | FTP | other *** search
/ Champak 54 / Vol 54.iso / games / virtual_.swf / scripts / frame_1 / DoAction_2.as next >
Encoding:
Text File  |  2007-09-27  |  367 b   |  18 lines

  1. function cTimer()
  2. {
  3.    this.startTime = getTimer();
  4. }
  5. cTimer.prototype.restartTimer = function()
  6. {
  7.    this.startTime = getTimer();
  8. };
  9. cTimer.prototype.milliseconds = function()
  10. {
  11.    return getTimer() - this.startTime;
  12. };
  13. cTimer.prototype.seconds = function()
  14. {
  15.    return int((getTimer() - this.startTime) / 1000);
  16. };
  17. iLevelPauseTimer = new cTimer();
  18.